Created
April 30, 2021 10:12
-
-
Save cihat/cf35d757e0b6688d256a207f37469bb4 to your computer and use it in GitHub Desktop.
branch conflict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git add -A | |
| git stash | |
| git checkout master | |
| git pull origin master | |
| git checkout development(branch) | |
| git rebase master | |
| git stash apply | |
| git reset | |
| git commit -am "eğer değişiklik varsa commitini att" | |
| git status | |
| git add ./dosyaAdı | |
| git commit -m "eğer yeni oluştuduğun dosya varsa commitini at" | |
| git push origin development(branch) | |
| // Eğer merge edeceksen, yapmayacaksan alttakileri komutları yazma PR(Pull Request) | |
| git checkout master | |
| git merge development | |
| git checkout development |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment