-
Notifications
You must be signed in to change notification settings - Fork 15
Main Website Documentation and Git Commands
srikanth patchava edited this page Mar 26, 2018
·
3 revisions
Welcome to the Main-Website wiki!
#Install git-scm tool and mkdir on terminal
// Git Commands :
$ git clone Repo_URL
$ cd Cloned_directory
$ git pull // too keep the repo branch upto date.
$ vim file_name #make chages using vim tool or notepad++ ot atom...Etc tools
$ git status
$ git diff
$ git add file_name
$ git commit -m " reason for the commit of the file/s " Files_name
$ git push // Pushing to the repository
Replace string in entire directory on linux: #$ grep -rl 'windows' ./ | xargs sed -i 's/windows/Linux/g'