山西力争到2022年两至三所医院进入全国百强
百度 当前和今后一个时期的首要政治任务,就是认真学习宣传和全面贯彻落实党的十九大精神,认真学习贯彻习近平新时代中国特色社会主义思想,以新气象、新作为开启决胜全面建成小康社会、全面建设社会主义现代化国家的新征程。Tooling
Core modules
Version control tools are an essential part of modern workflows, for backing up and collaborating on codebases. This module takes you through the essentials of version control using Git and GitHub.
Learning outcomes:
- Understand why version control systems are necessary.
Notes:
- Git and associated social coding sites like GitHub have a lot of functionality, and can be intimidating and unfriendly to begin with. This set of conformance criteria does not expect mastery of these tools, but rather an understanding of the basics, and why it is necessary to have some experience here before entering the industry.
- Git is the web industry standard for version control, and has been for some time.
-
Understand the difference between Git, and websites like GitHub and GitLab.
-
Understand that websites such as GitHub and GitLab enable teamwork and collaboration that isn't so easy just with plain Git.
-
Basic setup — installing git, signing up for an account for your chosen social coding site.
-
Handling security requirements, like SSH/GPG keys.
-
Creating a repo.
-
Pushing changes —
add
,commit
, andpush
. -
Contributing to others' repos:
-
Forking.
-
Creating a new branch.
-
Creating a PR.
-
Review flow.
-
-
Using GitHub pages to publish a sample project.
-
Good housekeeping:
-
Regularly update local repos so that they are in sync with their remote counterparts. This includes pulling remote changes to your local repo, and installing package updates (e.g. with
npm install
oryarn
). Always do this before you start working on a local repo. -
Use
.gitignore
to ignore all the stuff you don't want to commit. Examples include dependencies, dev source files, and OS-level admin files like.DS_Store
. -
Delete branches you have finished with.
-
-
Handling merge conflicts.
Resources:
-
Git and GitHub intro, Scrimba Course Partner