EECS441 MVP for MBark - a chrome extension that helps UofM COE undergrads manage there graduation requirements.
-
Download and setup git from https://git-scm.com/
-
Open cmd.exe and run:
git clone "https://[USERNAME]:[PASSWORD]@github.com/samrg123/MBark.git" "[DESTINATION_FOLDER_NAME]"
Note: You may need to escape special characters in your [USERNAME] and [PASSWORD] or use single quotes instead of double quotes -
Navigate to [DESTINATION_FOLDER_NAME] with:
cd "[DESTINATION_FOLDER_NAME]"
-
Set git name with:
git config user.name "[NAME]" -
Set git email with:
git config user.email "[EMAIL_ADDRESS]" -
[OPTIONAL] - Setup for large files Set up git lfs with:
git lfs install
- [OPTIONAL LFS Step] Track any large files with:
git lfs track "[LARGE_FILE]"Note: [LARGE_FILE] can include wildcards like: "*.png"
- Commit your changes with:
git add "[MODIFIED_FILE/DIR_1 | MODIFIED_FILE/DIR_1 | ...]" git commit -m "[COMMIT_MESSAGE]" git push
Note: git add can include wildcards like: "*.png" You can also use git add -u to add all modified files If you want to remove a file use git rm -f but be careful!
-
You should now have the MBark extension Installed!

Note: You'll get an annoying "Disable developer mode extensions" warning every time you start chrome You cannot disable this. There used to be an old way via group policy, but google removed it because of malware concerns. If its really bothering you can install Chrome Canary



