982
edits
(Explained git commands used to update script on team clone) |
|||
| Line 1: | Line 1: | ||
=== Release Notes for the Team Clone === | === Release Notes for the Team Clone === | ||
The team clone has been rebuilt as of 1:15 AM Tuesday, July 30, 2013 (UTC) | |||
If you have previously cloned the team clone, you should delete your clone and get a new one: | |||
git clone git://gitorious.org/+fg-download-and-compile/fg/fg-download-and-compile-fgmeta.git | |||
The branches on the clone will reflect what is intended to go to specific branches on the main fgmeta repository. Advance work on new features will be done on a new branch: script_prototype | The branches on the clone will reflect what is intended to go to specific branches on the main fgmeta repository. Advance work on new features will be done on a new branch: script_prototype | ||
| Line 82: | Line 85: | ||
</pre> | </pre> | ||
[[User:Callahanp|Callahanp]] 03:16, 19 July 2013 (UTC) | [[User:Callahanp|Callahanp]] 03:16, 19 July 2013 (UTC) | ||
=== git === | |||
Setup for git local git operations | |||
git clone git://gitorious.org/+fg-download-and-compile/fg/fg-download-and-compile-fgmeta.git | |||
gedit .git/config | |||
# change remote origin url | |||
# from git://gitorious.org/+fg-download-and-compile/fg/fg-download-and-compile-fgmeta.git | |||
# to git@gitorious.org:+fg-download-and-compile/fg/fg-download-and-compile-fgmeta.git | |||
Here's how the script_prototype branch was created. This is done already so you don't have to do it again. It's included here for instructional purposes. | |||
git branch -f script_prototype # creates a new branch | |||
git checkout -f script_prototype | |||
gedit download_and_compile.sh | |||
# make changes | |||
git commit -a | |||
git push --set-upstream origin script_prototype | |||
Making a change on master | |||
git branch -f master | |||
gedit download_and_compile.sh | |||
# make changes | |||
git commit -a | |||
git push | |||
Making a change on next | |||
git branch -f next | |||
gedit download_and_compile.sh | |||
# make changes | |||
git commit -a | |||
git push | |||
=== Development === | === Development === | ||
edits