git
Install Homebrew
Works on Linux and macOS now 👏.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Many commands expect powershell, which runs on macOS and Linux as well. Just run brew install powershell to grab it and most of this will work without any further changes unless specified.
Tools I’ve Relied On
CLI
VSCode
GitHub
Git Aliases
Everyone has their own brand of craziness with git aliases.
Here’s a few I’ve found helpful.
Azure DevOps Boards
This one will create an autocompleted ready to go pull request in azure repos using the last commit title and description. If you create your commit correctly for the last one, this will ensure no extra rework required to generate the title and body of the PR, as well as the cleaned up squash message on approval.
Install the Azure CLI and the devops extension will be installed automatically upon using: brew install az
az devops configure --defaults organization=https://dev.azure.com/MyOrganization/ project=my-project-name
az devops configure --use-git-aliases
# Azure DevOps Repos
new-pr = !pwsh -noprofile -nologo -c '&az repos pr create --title \"$(git log -1 --pretty=format:\"%s\")\" --description \"$(git log -1 --pretty=format:\"%b\")\" --auto-complete true --delete-source-branch true --squash --merge-commit-message \"$(git log -1 --pretty=format:\"%s\")\" --output table --open --detect'
General Commit
You only live once…rebase and sync from origin, commit all your changes, and generate a commit message using PowerShell NameIt module.
Install module via: Install-Module Nameit -Scope CurrentUser
Install gitversion via: dotnet tool install --global GitVersion.Tool
yolo = !pwsh -noprofile -nologo -c 'Import-Module Nameit && git add . && git commit -am\"[wip] $(dotnet-gitversion /showvariable FullSemVer) - $((NameIt\\Invoke-Generate '[adjective]-[noun]' -Culture EN).ToLower())\" --no-verify && git town sync && git log --oneline -1'
For quickly amending the last commit on your own private branch, you can combine these two commands to overwrite your branch with the latest changes instead of versioning.
pushf = !git push --force-with-lease
fixup = !git commit -a --amend --no-edit
Cleanup
| Command | Code |
|---|---|
| remove file from git without deleting | git rm --cached ./filepath.txt |
| remove directory from git without deleting | git rm --cached -r ./mydirectory |
Remove files already committed
git rm --cached $File
Renaming Branch
If you want to align with GitHub recommended naming of changing master to main, then this command will help you fix the local branches to correctly point master to the remote main branch.
git branch -m master main
git fetch origin
git branch -u origin/main main
You can configure this as a VSCode snippet for quick access by including this:
,"rename-master-to-main": {
"prefix": "rename-master-to-main",
"body": [
"git branch -m master main",
"git fetch origin",
"git branch -u origin/main main"
],
"description": "rename-master-to-main"
}
Working With Changes
All the commits the branch has that the master doesn’t. 1
git log master..$(git branch --show-current) --oneline
Cleanup Tags
- Remove tags on remote first:
git push --no-verify --delete MyTagName - Remove every local tag in your repo:
git tag -d $(git tag) - Pull latest tags:
git fetch origin --prune --prune-tags
Forks
- Add remote for fork, typically covered with the
upstreamname:git remote add upstream {repolink}. - Reset a forked branch to match the remote upstream resource:
git reset --hard upstream/master
Resources
| Source | Description |
|---|---|
| GitFixUm 2 | FlowChart Style Help |