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.
2 parents 6dfd223 + 91ddd8c commit 5dfc90dCopy full SHA for 5dfc90d
cheatsheet.md
@@ -3,7 +3,7 @@
3
##### Cloning your remote directory
4
git clone <remote directory>
5
6
-##### Checking that status of your local repository
+##### Checking that status of your local repository - shows changed but not added files in red
7
git status
8
9
##### Creating a new branch for you to work on
@@ -20,4 +20,8 @@
20
21
##### Moving files while preserving git history
22
git mv <source> <destination>
23
-
+
24
25
+##### making a new branch whilst moving into it AT THE SAME TIME
26
+ git checkout -b <new branch name>
27
0 commit comments