Git LFS Bandwidth Issue
Response: This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access.
Solution:
- Fork the repo to one of your users
- Go to repo settings
- Find "Include Git LFS objects in archives" under the Archives section and check it
- Go to the Danger Zone section, select "Archive this repository" more ...
Git
1. 仓库管理
Create Repository
$ mkdir myrepo
$ cd myrepo
$ git init
Initialized empty Git repository in /Users/jerrylsu/myrepo/.git/
Add File to Local Repository
$ git status
$ git diff filename
Check working directory status, and view changes made to the filemname.
$ git …
Keeping a fork synced with the origin repo
1. fork upstream_repo_url
2. git clone origin_repo_url
3. git remote add upstream upstream_url
4. git remote -v
5. git pull upstream dev
- git fetch upstream
- git checkout dev
- git merge upstream/dev
6. git checkout -b dev_01
(modify code...)
7. git push …