https://github.com/abhishek010397/git-utils
https://github.com/abhishek010397/git-utils
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abhishek010397/git-utils
- Owner: Abhishek010397
- Created: 2020-05-07T09:53:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T10:30:18.000Z (over 5 years ago)
- Last Synced: 2025-02-15T11:18:55.611Z (8 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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