An open API service indexing awesome lists of open source software.

https://github.com/abhishek010397/git-utils


https://github.com/abhishek010397/git-utils

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# GIt-utils
# Git rebase easy steps

## INITIALISE GIT BASH ON THE SPECIFIED FOLDER

for creating new branch:



git checkout -b
git branch

jump back to master branch:

git checkout master
vi
//edit the contents of the file
git add .
git commit -m "commit message"
git log

checkout to the feature branch:

git checkout
vi
//edit the contents
git add .
git commit -m "commit message"
git rebase master