8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75bbd72 commit 1648c0bCopy full SHA for 1648c0b
git-crash-course/readme.md
@@ -103,10 +103,32 @@ git checkout {dev}
103
104
## Remotes
105
106
+We can add remotes but often you will just add remote via upstream when adding a branch.
107
+
108
+```ssh
109
+got remote add ...
110
+git branch -u origin new-feature
111
+```
112
113
## Stashing
114
115
116
+git stash list
117
+git stash
118
+git stash save my-name
119
+git stash apply
120
+git stash pop
121
122
123
+* NOT USE IN A CLOUD ENV, BECAUSE YOU CAN LOST DATA
124
125
## Merging
126
127
128
+git checkout dev
129
+git merge main
130
131
132
## Add
133
134
When we want to stage changes that will be included in the commit.
0 commit comments