Skip to content

Instantly share code, notes, and snippets.

@cihat
Created April 30, 2021 10:12
Show Gist options
  • Select an option

  • Save cihat/cf35d757e0b6688d256a207f37469bb4 to your computer and use it in GitHub Desktop.

Select an option

Save cihat/cf35d757e0b6688d256a207f37469bb4 to your computer and use it in GitHub Desktop.
branch conflict
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