GIT Notes
GIT Notes
name “manisha”
ls -a
git status
will just do the comparison between local repo and current working directory/server. Untracked file/s
will be in red color.
make the tracked or changes to be committed. (file name color change from red to green)
git add .
OR
git diff
git branch
will tell not only all the present branches but also what is the current branch
touch .gitignore
vim .gitignore
git tag
NEED TO CHECK
git cherrypick
rebase
git remote update
git fetch
git pull
git push
git stash
how to set upstream?