2020-11-28 16:36:28 +00:00
|
|
|
|
# GitHub'da yeni bir repo oluştur. Daha sonra lokal klasöre gidip aşağıdaki komutları gir.
|
2020-12-01 03:28:42 +00:00
|
|
|
|
|
2020-11-28 16:36:28 +00:00
|
|
|
|
```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
|