XeNote/posts/Code/Git/Git Komutları.md
2020-11-28 19:36:28 +03:00

13 lines
344 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# GitHub'da yeni bir repo oluştur. Daha sonra lokal klasöre gidip aşağıdaki komutları gir.
```bash
git init
git add . && git commit -m "first commit"
git branch -M master
git remote add origin git@github.com:canburaks/repo-ismi.git
git push -u origin master
```
Böylece lokal dosyaların uzak git hesabına gönderilecektir.
#git-code