Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
The two commands are identical because
git add
defaults to
-A
git add my_dir  /  git add -A my_dir
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
if we run
git add -A
inside sub-directory, it will stage all of the changes even though some of the changes are up one directory. But
git add .
will only stage all updated, deleted and new files that are inside the sub-directory If we are inside
my_dir
sub-directory, the two commands will do the same
git add .  /  git add -A my_dir/
https://youtu.be/tcd4txbTtAY?t=349
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Stages all modified, deleted and new files in the entire working tree
git add --all  /  git add -A
-A
is a short handhand notation for
--all
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
To set diffmerge as default diff & merge tool for git
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
We can run
git stash
on one branch and then
git stash pop
on another branch (to commit changes on another branch)
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Deletes all stashes
git stash clear
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Drops the specified stash
git stash drop stash@{0}
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Applies the most recent stash & deletes the stash
git stash pop
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Takes stashed changes back (with specified id)
git stash apply stash@{0}
does not delete the stash
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Shows all the stashes with unique IDs
git stash list
by Valeri Tandilashvili
5 years ago
0
Git
Git Tutorials
1
Results: 1578