Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. Install Notepad++ or Visual Studio Code.
  2. Install Git.
  3. Create a folder where you would like to store the FBB project in.
  4. Open the folder.
  5. Right click in blank white space and click "Git Bash". https://gyazo.com/a6bbe45344adf70f3d7d07ae57d2fd48
  6. In the terminal window that opens type: git config --global user.name "replace this with your name"
  7. Press enter.
  8. Now type: git config --global user.email "replace this with your github email"
  9. Press enter.
  10. Now type: git config --list
  11. Press enter, and send screenshot to Dan.
  12. Now type: git clone https://github.com/danmw3/Forged-By-Betrayal.git
  13. Press enter.
  14. If at any point it wants you to login, do so.
  15.  
  16. Now the project is downloaded.
  17. Open Unity and click the Open button in the top right corner.
  18. Navigate to the folder you created earlier, and select the Forged By Betrayal folder.
  19.  
  20. Once the project loads, go to Window > GitHub. This will open a new panel by the inspector.
  21. Click sign in, in the top right corner of the panel.
  22. Enter your github username and password.
  23.  
  24.  
  25. At the top of the panel there are 4 important buttons: Push, Pull, Fetch, Refresh.
  26. Push lets you upload the changes you made to the project.
  27. Pull lets you download changes other people have made, and will give you the latest version of the project.
  28. Refresh... just click it sometimes if shit aint working.
  29. Fetch... just click it sometimes if shit still aint working.
  30.  
  31. Occasionally there will be a "(1)" next to push or pull, that means you have changes you either need to push or pull.
  32. You must always pull other changes before you can push your own.
  33.  
  34. There are 5 tabs in the GitHub panel: Changes, Locks, History, Branches, Settings.
  35.  
  36. When you make a change to the project, those changes will be listed in the Changes tab.
  37. Your changes need to be commited before you can push them.
  38. To do that, click the All button, fill out the Commit summary and description at the bottom, then click Commit.
  39. Commit will save your changes to the local copy of the Forged By Betrayal repo.
  40. After you commit your changes, you can push them to the remote repo that is on GitHub.
  41.  
  42. The locks tab will list file locks that people have made. Locks prevent other people from pushing changes to that file.
  43.  
  44. The history tab will keep track of changes.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement