|
You are here |
daniel.haxx.se | ||
| | | | |
www.maxpou.fr
|
|
| | | | | A Git Cheat Sheet that focuses on Essential Commands for Experienced Developers. | |
| | | | |
antonz.org
|
|
| | | | | Interactive introduction to Git with real-world use cases. | |
| | | | |
www.brandonpugh.com
|
|
| | | | | I found a way to stash changes in git without including the branch name in the stash message. This might be a very niche use case but it's been a minor annoyance for me for some time. If you just want the alias, then add the following to your .gitconfig: [alias] sm = "!f() { git stash || exit 1; rev=$(git rev-parse stash@{0}) && git stash drop stash@{0} || exit 1; git stash store -m \"$1\" $rev; }; f" You can also use this technique for renaming stashes. | |
| | | | |
www.cesarsotovalero.net
|
|
| | | Git is the go-to version control system in software development, created by Linus Torvalds in 2005 for Linux kernel development. It's now an indispensable tool for tracking project history and managing versions. This post covers the key Git commands you need to streamline your development workflow. | ||