User:Devourawr: Difference between revisions
Jump to navigation
Jump to search
(Blanked the page) |
No edit summary |
||
Line 1: | Line 1: | ||
=To download the remote repository= | |||
git clone git@git.empiresmod.com:empires_assets/assets_source.git | |||
Will clone the repository. Default file location is Desktop - can be changed | |||
=Navigate to your checked out repo= | |||
cd assets_source, or wherever you placed it | |||
=Checkout a branch= | |||
git checkout -b feature/<something> | |||
=Add the files you want changed to the folder= | |||
Manually drag and drop into the assets_source window | |||
=Add the viles via git= | |||
git add -A IF YOU'RE SURE | |||
or | |||
git add materialsrc/<yourfolder> individually | |||
=Review the changes= | |||
git status | |||
=Commit the changes= | |||
git commit | |||
=Push the changes= | |||
git push -u origin feature/<something> |
Latest revision as of 22:12, 4 April 2017
To download the remote repository
git clone git@git.empiresmod.com:empires_assets/assets_source.git Will clone the repository. Default file location is Desktop - can be changed
cd assets_source, or wherever you placed it
Checkout a branch
git checkout -b feature/<something>
Add the files you want changed to the folder
Manually drag and drop into the assets_source window
Add the viles via git
git add -A IF YOU'RE SURE or git add materialsrc/<yourfolder> individually
Review the changes
git status
Commit the changes
git commit
Push the changes
git push -u origin feature/<something>