adding user name
set email address
.gitconfig file in home folder will contain above information
creating clone of project :
to see history of project
create folder for project
to check the status
to commit the modification
#git commit -m 'msg'
to add files to track
to see last commit
#git config --global user.name "Trinity"
set email address
#git config --global user.email "trinity@gmail.com"
.gitconfig file in home folder will contain above information
creating clone of project :
#git clone <link>
to see history of project
#git log
creating a project
create folder for project
#mkdir Trinity
#cd Trinity
#git init
to check the status
#git status
to commit the modification
#git commit -m 'msg'
to add files to track
#git add .
to see last commit
#git show
No comments:
Post a Comment