git_cheat_sheet
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
git_cheat_sheet [2022/09/13 23:25] – [How PRs work] stephen | git_cheat_sheet [2024/06/17 09:49] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 21: | Line 21: | ||
editor = ' | editor = ' | ||
pager = cat | pager = cat | ||
+ | longpaths = true | ||
[user] | [user] | ||
Line 57: | Line 58: | ||
st = status | st = status | ||
ci = commit -m | ci = commit -m | ||
- | ca = commit --amend | + | ca = commit --amend |
br = branch | br = branch | ||
ba = branch -a | ba = branch -a | ||
Line 65: | 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 134: | Line 137: | ||
| ''< | | ''< | ||
| ''< | | ''< | ||
+ | | ''< | ||
+ | | ''< | ||
| ''< | | ''< | ||
| ''< | | ''< | ||
Line 142: | Line 147: | ||
| ''< | | ''< | ||
| ''< | | ''< | ||
+ | | ''< | ||
===== Workflows ===== | ===== Workflows ===== | ||
Line 263: | Line 269: | ||
< | < | ||
git svn clone https:// | git svn clone https:// | ||
+ | </ | ||
+ | |||
+ | ===== Who needs to clean up ===== | ||
+ | |||
+ | Lists the author and date of the last commit on each remote branch. Need to run it on bash. | ||
+ | |||
+ | < | ||
+ | for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format=" | ||
</ | </ | ||
git_cheat_sheet.1663111543.txt.gz · Last modified: 2022/09/15 00:25 (external edit)