Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 513 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 513 Bytes
git init
git remote add origin <link>
git add .
git status
git commit -m "Add First Commit"
git branch
git branch <your name>/first-project
git switch <your name>/first-project
git push origin <your name>/first-project
git log --oneline

cd <directory>
cd ..
ls
ls -a

git add .
$ git commit -m <commit msg>

$ git fetch
$ git rebase origin/develop

$ git push --force-with-lease origin <your branch>

$ git pull --rebase origin develop

$ git fetch
$ git merge origin/develop
$ git pull origin develop