First time using Git(首次用git)
cd myproject git init # add all your files. Use can use specific filenames or directories instead of '.' git add . git commit -a -m 'Initial commit' git remote add origin ssh://waynelau521@git.code.sf.net/p/doufe-com/code git push origin master git branch --set-upstream master origin/master # so 'git pull' will work later
Existing repository using Git(已经存在库)
cd myproject git remote add origin ssh://waynelau521@git.code.sf.net/p/doufe-com/code git push origin master git branch --set-upstream master origin/master # so 'git pull' will work later
时间: 2024-11-05 06:25:30