Posts

Showing posts from December, 2018

git commands

cflow_list CFLOW_LIST_B present working directory---PWD git version control bucky video ---------- video link ----------- https://www.youtube.com/watch?v=mYjZtU1-u9Y&list=PLcaPT6_oTzIclQQjRLU6t3sm5vvWIlrG2 =======1.9 version ========== commands git --version ssh-keygen password : 123456 enter some where it ask pwd commands ls  --show list of files git config --global user.name "narendrae" git config --global user.email "narendraenamala@gmail.com" git config --global user.email "narendrae@sathguru.com" ssh://narendrae@192.9.200.13:29418/ErpAdmin.git ssh://narendrae@sathguru.com@192.9.200.13:29418/ErpAdmin.git git clone http://narendrae@192.9.200.13:8585/gitblit/r/ErpAdmin.git git init gitproject git add octocat.txt    -- <file or> git add . ( it will add all files to the project folder) git status -- . this time you notice in green and both these are new files. git rm --cached octocat.txt ( If you...