8,807
edits
Line 106: | Line 106: | ||
# Run ''git status -- .'' to show the status of the current directory. | # Run ''git status -- .'' to show the status of the current directory. | ||
# Now, ''git add filename'' the files you want to include in the commit but that are currently listed as "untracked". After adding a couple of files, redo step 4 to update the untracked list. | # Now, ''git add filename'' the files you want to include in the commit but that are currently listed as "untracked". After adding a couple of files, redo step 4 to update the untracked list. | ||
# Run ''git commit''. | # Run ''git commit -m "Summary of the update"''. Where you should write a short summary on what you changed. | ||
# Now run ''git push fgdataclone'', replacing fgdataclone with the line that you get by clicking SSH on your fgdata clone page at Gitorious (should be something like ''git@gitorious.org:~your/fg/yours-fgdata.git'') You will have to enter your SSH passphrase. Press Enter when you're done (note: your passphrase is hidden!). Git will now commit your work, this can take a long time, depending on the number of commits that have been made since you cloned fgdata. | # Now run ''git push fgdataclone'', replacing fgdataclone with the line that you get by clicking SSH on your fgdata clone page at Gitorious (should be something like ''git@gitorious.org:~your/fg/yours-fgdata.git'') You will have to enter your SSH passphrase. Press Enter when you're done (note: your passphrase is hidden!). Git will now commit your work, this can take a long time, depending on the number of commits that have been made since you cloned fgdata. |