GitXplorerGitXplorer
a

aa21-problem-set-01

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
d6efd464735b7e581cc8f1d939ef5d893f4319a5

Updated from solution change by ssoonmi

aaa-assessment-project-manager[bot] committed a year ago
Verified
ae3213707d2da1bdd23ef6c994a706508c466d67

Initial commit

aaa-assessment-project-manager[bot] committed a year ago

README

The README file for this repository.

Choose Your Branch!

This repo contains different versions of the starter code for aa21-problem-set-01, with each version stored in a program-specific branch. To download or clone the correct branch, choose a method (degit, zip, or clone) and follow the instructions for your specific program.

degit the branch

This is the most straightforward way to clone the project into a folder named aa21-problem-set-01. Simply run the following command in the directory where you want the project to appear:

Online Full-Time

npx degit appacademy/aa21-problem-set-01#full-time aa21-problem-set-01

Online Part-Time

npx degit appacademy/aa21-problem-set-01#part-time aa21-problem-set-01

Note: The first time you run npx degit, you will likely be asked if you want to install degit. Go ahead and install it.

Unless you cloned the project into an already existing local git repo, run

cd aa21-problem-set-01 && git init

to initialize the project as a git repository that you can connect to a remote repo in your personal GitHub account.

Download the branch as a .zip

READ THESE INSTRUCTIONS FULLY BEFORE IMPLEMENTING THEM AS YOU WILL LOSE ACCESS TO THIS PAGE ONCE YOU SWITCH TO YOUR PROGRAM BRANCH.

If you want to download your branch as a .zip file, click on the branch button to the upper-left of the file list above--the button should currently read "main"--and select your program from the resulting dropdown menu. This will take you to your program's branch. Once there, click the green "Code" button and select "Download ZIP" from the bottom of the menu. Move the .zip to your desired location and unzip!

Unless you unzipped the project in an already existing local git repo, run

cd aa21-problem-set-01 && git init

to initialize the project as a git repository that you can connect to a remote repo in your personal GitHub account.

(To return to this page in your browser, simply select the "main" branch again.)

Clone the branch

To clone the branch, open a terminal and cd into the directory where you want the repo to go. Then run the command specified below for your program and preferred authentication method:

Online Full-Time

To authenticate with a Personal Access Token over HTTPS, run

git clone --branch full-time --single-branch https://github.com/appacademy/aa21-problem-set-01.git

To authenticate with SSH, run

git clone --branch full-time --single-branch git@github.com:appacademy/aa21-problem-set-01.git

Online Part-Time

To authenticate with a Personal Access Token over HTTPS, run

git clone --branch part-time --single-branch https://github.com/appacademy/aa21-problem-set-01.git

To authenticate with SSH, run

git clone --branch part-time --single-branch git@github.com:appacademy/aa21-problem-set-01.git

When you clone a repo, the cloned repo's remote origin will still point to the original repo.

To reassign the clone to your personal GitHub account (so you can push and pull changes), create a remote aa21-problem-set-01 repo at https://github.com. Then, back in your local terminal, cd into the cloned repo and run the following commands to link the cloned repo to your newly created remote and push up the current code (replace with your actual GitHub username):

git remote set-url origin https://github.com/<YOUR-GH-USERNAME>/aa21-problem-set-01
git push -u origin

Note: The first command differs from the command GitHub tells you to use to connect an existing repo: you should run git remote set-url (as above) rather than git remote add (as GitHub recommends).

If you instead clone the project into a folder already initialized as a local git repo, you just need to remove the clone's remote connection to the original repo. cd into the cloned repo and run

rm -rf .git

WARNING: rm -rf is a dangerous command that will delete the specified directory--here, .git--and all of the directory's subfolders without any verification. Make sure you are in the cloned repo when you run this command.