User Tools

Site Tools


git_cheat_sheet

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
git_cheat_sheet [2023/07/20 00:07] stephengit_cheat_sheet [2024/06/17 09:49] (current) – external edit 127.0.0.1
Line 66: Line 66:
  fa = fetch -a  fa = fetch -a
  tf = !git reset && git checkout -- . && git clean -df  tf = !git reset && git checkout -- . && git clean -df
 + as = !git add . && git stash
 + pr = !git stash pop && git reset
  brdr = push --delete origin  brdr = push --delete origin
  fp = push --force  fp = push --force
Line 267: Line 269:
 <code> <code>
 git svn clone https://ares/svn/SVNRepository/Presentations --no-metadata --tags=Tags --trunk=Trunk --branches=Branches --authors-file=..\users.txt git svn clone https://ares/svn/SVNRepository/Presentations --no-metadata --tags=Tags --trunk=Trunk --branches=Branches --authors-file=..\users.txt
 +</code>
 +
 +===== Who needs to clean up =====
 +
 +Lists the author and date of the last commit on each remote branch. Need to run it on bash.
 +
 +<code>
 +for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ai %ar by %an" $branch | head -n 1` \\t$branch; done | sort -r
 </code> </code>
  
git_cheat_sheet.1689811649.txt.gz · Last modified: 2023/07/21 01:07 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki