13 lines
344 B
Markdown
13 lines
344 B
Markdown
# 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
|