File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,23 @@ instructions. If that happens, install Git using
13
13
[ these instructions] ( https://git-scm.com/book/en/v2/Getting-Started-Installing-Git ) ,
14
14
and then restart Android Studio.
15
15
16
- 1 . Set up your remotes.
17
-
16
+ 1 . Set up your remotes.
18
17
19
18
a. Note that the list of remotes is not synced using Git, so you should do this on any
20
- computers that have a copy of this repository.
19
+ computers that have a copy of this repository.
20
+
21
21
b. Open the Terminal tab in Android Studio.
22
+
22
23
c. To see your current remotes and where they point, enter the command
23
24
` git remote -v ` .
25
+
24
26
d. Your ` origin ` remote should point to wherever you're hosting your repository.
25
27
You probably have a remote (usually named ` upstream ` ) that points to the
26
28
official FTC repository (` https://github.com/ftctechnh/ftc_app.git ` ).
29
+
27
30
e. Delete whatever remote points to the official FTC app. For example,
28
31
` git remote remove upstream ` .
32
+
29
33
f. Replace it with an ` upstream ` remote that points to whichever version of OpenRC
30
34
that you prefer. If you want to have access to Blocks and OnBotJava, use the
31
35
command ` git remote add upstream https://github.com/OpenFTC/OpenRC.git ` .
You can’t perform that action at this time.
0 commit comments