Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. To Clone
  2. git clone git://git.linuxcnc.org/git/linuxcnc.git emc-dev
  3. cd emc-dev
  4. git checkout branch_name
  5. cd src
  6. ./autogen.sh
  7. ./configure --enable-build-documentation >> /home/john/Desktop/configure.txt 2>&1
  8. make >> /home/john/Desktop/make.txt 2>&1
  9.  
  10. To Build
  11. cd emc2-dev/src
  12. make clean >> /home/john/Desktop/make_clean.txt 2>&1
  13. ./autogen.sh
  14. ./configure --enable-build-documentation >> /home/john/Desktop/configure.txt 2>&1
  15. make >> /home/john/Desktop/make.txt 2>&1
  16.  
  17.  
  18. git checkout v2.4_branch
  19. git cherry-pick [the commit ref but not with the r]
  20.  
  21. to show a commit
  22. git show aacfa647c0
  23.  
  24. to search git
  25. gitk --grep=g98
  26.  
  27. to view all branches
  28. git branch -r
  29.  
  30. to view the referenc log
  31. git reflog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement