git
Note
This is a mix of git, github, azure devops repos, and other workflow tips that help me work more quickly. Comments are welcome with any corrections or suggestions.
Install Homebrewπ
Works on Linux and macOS now π.
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 there 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 ammending 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.
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π
Renaming Branchπ
If you want to align with GitHub recommendeding 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.
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
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
upstream
name: `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 |