User:Devourawr: Difference between revisions

From Empires Wiki
Jump to navigation Jump to search
(Created page with "Is fucking awesome. Is also an admin, so if you need an account, PM me.")
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Is fucking awesome.
=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


Is also an admin, so if you need an account, PM me.
=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 21: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

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>