Git: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 42: | Line 42: | ||
* [https://gohugo.io/ Hugo Static Site Generators] | * [https://gohugo.io/ Hugo Static Site Generators] | ||
* [https://stackoverflow.com/questions/11269256/ Stash Naming and Retrieval] | * [https://stackoverflow.com/questions/11269256/ Stash Naming and Retrieval] | ||
* [https://stackoverflow.com/questions/11369375/ Stash Drop and Clear] | |||
* [https://www.atlassian.com/git/tutorials/inspecting-a-repository/git-blame Git Blame vs Git Log] | * [https://www.atlassian.com/git/tutorials/inspecting-a-repository/git-blame Git Blame vs Git Log] | ||
* [https://www.atlassian.com/git/tutorials/inspecting-a-repository/git-tag Git Annotated Tags] | * [https://www.atlassian.com/git/tutorials/inspecting-a-repository/git-tag Git Annotated Tags] | ||
Revision as of 11:26, 23 June 2021
git stash apply stash@{index}
git stash drop stash@{index}
git stash pop stash@{index}
git stash clear
git stash list
|
git stash push -m stash_v1.0.00
git stash apply stash^{/stash_v1.0.00}
git diff > ~/.chorke/tmp/academia/patch/v1.0.00.patch
git apply ~/.chorke/tmp/academia/patch/v1.0.00.patch
git apply --3way ~/.chorke/tmp/academia/patch/v1.0.00.patch
|
Git Tag
annotated tag git tag -a v1.5_initial_setup -m 'initial setup' git tag -a v1.5_initial_setup
lightweight tag git tag v1.5_initial_setup