-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Git Example - Based on Bootstrap 101 Tutorial</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<!-- Bootstrap --> | ||
<link href="css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="css/main.css" rel="stylesheet"> | ||
|
||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> | ||
<![endif]--> | ||
</head> | ||
<body> | ||
<h1>Git Training Topics</h1> | ||
|
||
<div class="topic">Cloning A Repository</div> | ||
|
||
<div class="topic">Making Modifications to a Repository</div> | ||
<div class="subtopic">Adding New Files</div> | ||
<div class="subtopic">Modifying Existing Files</div> | ||
<div class="subtopic">Committing Files to a Local Repository</div> | ||
<div class="subtopic">Pushing Changes to a Remote Repository</div> | ||
|
||
<div class="topic">Branching And Merging A Repository</div> | ||
<div class="subtopic">Creating A Branch</div> | ||
|
||
|
||
|
||
|
||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | ||
<script src="https://code.jquery.com/jquery.js"></script> | ||
<!-- Include all compiled plugins (below), or include individual files as needed --> | ||
<script src="js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |