Skip to content

vietnc/Git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Global setup:
 Set up git
  git config --global user.name "Your Name"
  git config --global user.email [email protected]
Add your public key
      
 Next steps:
  mkdir Git
  cd Git
  git init
  touch README
  git add README
  git commit -m 'first commit'
  git remote add origin https://github.com/vietnc/Git.git
  git push -u origin master
      
 Existing Git Repo?
  cd existing_git_repo
  git remote add origin https://github.com/vietnc/Git.git
  git push -u origin master
      
 Importing a Subversion Repo?
  Check out the guide for step by step instructions.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors