forked from coderetreat/coderetreat.org
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24af53c
commit 152398b
Showing
10 changed files
with
84 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,17 +13,15 @@ resources: | |
- type: shell | ||
command: git --global config user.email "[email protected]" | ||
description: Command to set your email in git | ||
video: | ||
- poster: /getting-started/guides/windows-git.mp4.thumb.jpg | ||
src: /getting-started/guides/windows-git.mp4 | ||
description: A screencast of setting up git on Windows (1.2MB) | ||
- poster: /getting-started/guides/windows-git-setup-user.mp4.thumb.jpg | ||
src: /getting-started/guides/windows-git-setup-user.mp4 | ||
description: A screencast of configuring git on Windows (1.2MB) | ||
--- | ||
|
||
<video | ||
width="100%" | ||
controls | ||
class="my-2 drop-shadow-small" | ||
preload="none" | ||
poster="{% link getting-started/guides/windows-git.mp4.thumb.jpg %}" | ||
src="{% link getting-started/guides/windows-git.mp4 %}"></video> | ||
<span class="text-center d-block small">A screencast of setting up git on Windows (1.2MB)</span> | ||
|
||
`git` is a version control system, that means it is used to archive and share files in a way that makes it easy for collaborators to work in their changes. It is similar to _Dropbox_ or _Google Drive_, but it's not realtime/instant, as they are. | ||
|
||
Instead, it records only the changes you did (e.g. removing a line, changing a word etc.) locally. When you're ready, you can _pull_ the latest version from a remote repository (a lot of which are hosted on _GitHub_ or _GitLab_). Git will try to work in your changes into whatever happened remotely. If everything went smoothly, you can _push_ your changes back up. If not, you have to resolve a _merge-conflict_. | ||
|
@@ -47,11 +45,3 @@ git --global config user.name "YOUR NAME" | |
git --global config user.email "[email protected]" | ||
``` | ||
|
||
<video | ||
width="100%" | ||
controls | ||
class="my-2 drop-shadow-small" | ||
preload="none" | ||
poster="{% link getting-started/guides/windows-git-setup-user.mp4.thumb.jpg %}" | ||
src="{% link getting-started/guides/windows-git-setup-user.mp4 %}"></video> | ||
<span class="text-center d-block small">A screencast of configuring git on Windows (1.2MB)</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 4 additions & 9 deletions
13
_setup_steps/windows-intellij-kotlin-2-gradle-add-junit5.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters