Skip to main content

GIT Knowledge

#1 Git author Unknown
Sets the name of the user for all git instances on the system
$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "your_email@youremail.com"
[user]
name = Bob Gilmore
email = me@mydomain.com
3.3  get remote server  branch info
3.4  switch to branch
#4  Git  fetch
-- cache the info entered
#6 Git check out
#7 Git pull
 you have to tell git where to pull from, in this case from the current directory/repository:
git pull . master
 but when working locally, you usually just call merge (pull internally calls merge):
git merge master


#8 git git-credentials
#9 git merge

Solution: 
Or even better than running git config, you can edit your ~/.gitconfig file directly. Look and see if there's a section for [user] with the relevant information. For example, my ~/.gitconfig has this...
(There's no space in front of the [user], and single tabs in front of the name and email labels)
If it doesn't have those set properly, just go ahead and edit the .gitconfig file by hand.
#2  Git log
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
#3 Git branch
3.1 create branch
git branch branchname 
3.2 push to remote branch in the  server side
git push -u origin my_branch

git branch -r

git checkout branchname

 -- peek the change from the remote server
#5 git config
git config --global credential.username=EMAIL

git config --global credential.helper cache
git config --global credential.helper "cache --timeout=3600"
git config credential.helper store
vi !/.gitconfig

git checkout master
if you checkout a file, that file will be reverted and ready for editing

git pull
pull from local branch:
but when working locally, you usually just call merge (pull internally calls merge):

 git merge --abort

How can you see what you are about to push with git?

For a list of files to be pushed, run:
git diff --stat [remote/branch]
example:
git diff --stat origin/master
For the code diff of the files to be pushed, run:
git diff [remote repo/branch]
To see full file paths of the files that will change, run:
git diff --numstat [remote repo/branch]



Comments

Popular posts from this blog

Stretch a row if data overflows in jasper reports

It is very common that some columns of the report need to stretch to show all the content in that column. But  if you just specify the property " stretch with overflow' to that column(we called text field in jasper report world) , it will just stretch that column and won't change other columns, so the row could be ridiculous. Haven't find the solution from internet yet. So I just review the properties in iReport one by one and find two useful properties(the bold  highlighted in example below) which resolve the problems.   example: <band height="20" splitType="Stretch" > <textField isStretchWithOverflow="true" pa...

Live - solving the jasper report out of memory and high cpu usage problems

I still can not find the solution. So I summary all the things and tell my boss about it. If any one knows the solution, please let me know. Symptom: 1.        The JVM became Out of memory when creating big consumption report 2.        Those JRTemplateElement-instances is still there occupied even if I logged out the system Reason:         1. There is a large number of JRTemplateElement-instances cached in the memory 2.     The clearobjects() method in ReportThread class has not been triggered when logging out Action I tried:      About the Virtualizer: 1.     Replacing the JRSwapFileVirtualizer with JRFileVirtualizer 2.     Not use any FileVirtualizer for c...

JasperReports - Configuration Reference

Data Source / Query Executer net.sf.jasperreports.csv.column.names.{arbitrary_name} net.sf.jasperreports.csv.date.pattern net.sf.jasperreports.csv.encoding net.sf.jasperreports.csv.field.delimiter net.sf.jasperreports.csv.locale.code net.sf.jasperreports.csv.number.pattern net.sf.jasperreports.csv.record.delimiter net.sf.jasperreports.csv.source net.sf.jasperreports.csv.timezone.id net.sf.jasperreports.ejbql.query.hint.{hint} net.sf.jasperreports.ejbql.query.page.size net.sf.jasperreports.hql.clear.cache net.sf.jasperreports.hql.field.mapping.descriptions net.sf.jasperreports.hql.query.list.page.size net.sf.jasperreports.hql.query.run.type net.sf.jasperreports.jdbc.concurrency net.sf.jasperreports.jdbc.fetch.size net.sf.jasperreports.jdbc.holdability net.sf.jasperreports.jdbc.max.field.size net.sf.jasperreports.jdbc.result.set.type net.sf.jasperreports.query.chunk.token.separators net.sf.jasperreports.query.executer.factory.{language} net.sf.jasperreports.xpath....