-
Notifications
You must be signed in to change notification settings - Fork 3
Build local repo for engine
taiwen edited this page Jul 15, 2011
·
1 revision
- Download and install Git client: Download client for Windows from: http://code.google.com/p/msysgit/
- Configure (in git bash):
- git config --global user.name "{Your Name}"
- git config --global user.email {YourEmailAccountForGithub}
- git clone https://{YouGithuabAccount}@github.com/xoops/{RepoName}
- git clone git://github.com/xoops/{RepoName}
(skip this step if your are not a developer for the repo):
- mkdir {RepoName}
- cd {RepoName}
- git init
- touch README
- git add README
- git commit -m '{Your commit message}'
- git remote add origin https://{YouGithuabAccount}@github.com/xoops/{RepoName}
- git push -u origin master
Note: Change the content in {} to your account/repo respectively