summaryrefslogtreecommitdiffhomepage
path: root/tr-tr/git-tr.html.markdown
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-06 08:33:50 -0700
committerBoris Verkhovskiy <boris.verk@gmail.com>2024-04-06 08:33:50 -0700
commit3e687f1a8ccb1cd0d52a966005551d528ca141df (patch)
tree30d433ba19ec49808cc0f0de8a161835ad5f29c9 /tr-tr/git-tr.html.markdown
parent9fa4b5af80f1cd7fe2469c198d02a21e4f8884a1 (diff)
Remove leading and trailing empty lines in code blocks
Diffstat (limited to 'tr-tr/git-tr.html.markdown')
-rw-r--r--tr-tr/git-tr.html.markdown5
1 files changed, 5 insertions, 0 deletions
diff --git a/tr-tr/git-tr.html.markdown b/tr-tr/git-tr.html.markdown
index ad2f2e95..13225a24 100644
--- a/tr-tr/git-tr.html.markdown
+++ b/tr-tr/git-tr.html.markdown
@@ -187,6 +187,7 @@ $ git add ./*.java
# You can also add everything in your working directory to the staging area.
$ git add -A
```
+
Bu yalnızca dosyayı staging area'a/index'e ekler, çalışılan dizine/repo'ya commit etmez.
### branch
@@ -443,6 +444,7 @@ Saved working directory and index state \
```bash
git pull
```
+
`...changes apply...`
Herşeyin tamam olduğunu kontrol et
@@ -452,6 +454,7 @@ $ git status
# On branch master
nothing to commit, working directory clean
```
+
Şu ana kadar neleri stash'lediğini `git stash list` kullanarak görebilirsin.
Stash'lenen şeyler Son-Giren-İlk-Çıkar şeklinde tutulduğundan en son değişim
en üste olacaktır.
@@ -462,6 +465,7 @@ stash@{0}: WIP on master: 049d078 added the index file
stash@{1}: WIP on master: c264051 Revert "added file_size"
stash@{2}: WIP on master: 21d80a5 added number to log
```
+
Şimdi de kirli değişiklileri yığından çıkarıp uygulayalım.
```bash
@@ -540,6 +544,7 @@ Bu sana beklemediğin şekilde yanlış giden komutları geriye çevirme şansı
ed8ddf2 HEAD@{4}: rebase -i (pick): pythonstatcomp spanish translation (#1748)
2e6c386 HEAD@{5}: rebase -i (start): checkout 02fb96d
```
+
2. Nereye reset'leyeceğini seç, şu durumda `2e6c386` veya `HEAD@{5}`
3. 'git reset --hard HEAD@{5}' bu repo'nu seçilen head'e eşitler
4. Rebase'e yeniden başlayabilir veya onu yalnız bırakabilirsin.