Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 750 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 750 Bytes

Git Stuff

gitalias

.gitconfig

nfb - new feature branch
nbb - new bug branch
cm - commit with message
ch - checkout
push-set - push with seting upstream
pdev - pull origin develop
loc - Print changed files, inserted lines of code and deleted lines of code: git loc 2020-02-01 2020-03-29

gitignore

.gitignore_DotNet_and_VisualStudio - .gitignore for .NET and Visual Studio

Useful git commands

// Status with shorten output
git status -sb
// Checkout previous branch
git checkout -
// Show information about all branches
git branch -vv
// Sort branches by commit date
git branch --sort=-committerdate