GIT
A staggering number of software projects rely on Git for version control
Git's features
- Performance
- Security
- Flexibility
- Version control
Some important commands in Git
- git config --global user.name "xxx"
- git config --global user.email "yyy"
- git init - Initiate projects
- git add . - Adding project in directory area
- git status - Different between index & working directory
- git commit -m "this is html file" - description of the project
- git remote add origin url - attach with our github url
- git remote -v - list github project's remote
- git push -u origin master - pushes a local branch to the remote origin
- git clone - download a copy of a remote like which is in github
0 comments:
Post a Comment