Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
soft:git [2021/05/15 08:02] Ce Zhangsoft:git [2021/05/15 08:25] (current) Ce Zhang
Line 11: Line 11:
 git log git log
 </code> </code>
 +<code>
 +alias gitpull='git pull origin master'
 +alias gitpush='git push origin master'
 +</code>
 +
  
 for the second and the following git res: for the second and the following git res:
 <code> <code>
-git clone https://github.com/CedricZhang9516/diffMu.git+mkdir diffMu
 cd diffMu cd diffMu
-git status+git init 
 +git remote add origin https://github.com/CedricZhang9516/diffMu.git 
 +git pull origin master 
 +* when your github branch was named master
 </code> </code>