Private GHE Preview
authorTim Berglund <tlberglund@github.com>
Fri, 11 Oct 2013 16:56:01 +0000 (10:56 -0600)
committerTim Berglund <tlberglund@github.com>
Fri, 11 Oct 2013 16:56:37 +0000 (10:56 -0600)
classnotes/2013-10-11-private-github-enterprise-feature-preview.md [new file with mode: 0644]

diff --git a/classnotes/2013-10-11-private-github-enterprise-feature-preview.md b/classnotes/2013-10-11-private-github-enterprise-feature-preview.md
new file mode 100644 (file)
index 0000000..229bfaf
--- /dev/null
@@ -0,0 +1,112 @@
+---
+layout: bare
+title: Private GitHub Enterprise Feature Preview
+description: Private GitHub Enterprise Feature Preview Class Notes
+tags: [notes]
+path: classnotes/2013-10-11-private-github-enterprise-feature-preview.md
+eventdate: 2013-10-11
+---
+
+## Teachers
+* Tim Berglund ([Twitter](http://twitter.com/tlberglund), [GitHub](https://github.com/tlberglund))
+
+## Resources
+
+* [Adding SSL Certificates for GitHub.com (Common for Windows XP)](http://stackoverflow.com/questions/3777075/https-github-access/4454754#4454754)
+* Disabling SSL Certificate Checks for Git:
+
+        git config --global http.sslVerify false
+* [Open Source Git Ignore Templates](https://github.com/github/gitignore)
+* [Book Authoring on Git and GitHub](http://teach.github.com/articles/book-authoring-using-git-and-github/)
+* [Post Receive Hooks](https://help.github.com/articles/post-receive-hooks)
+* [GitHub Training Videos](http://training.github.com/resources/videos/)
+* [Using Git with Media Temple](http://carl-topham.com/theblog/post/using-git-media-temple/)
+* [GitHub Training Feedback and Follow-up Questions](https://github.com/githubtraining/feedback/issues?state=open)
+* [GitHub Commit Status API for Continuous Integration](https://github.com/blog/1227-commit-status-api)
+* [Git Credential Cache for HTTP](http://teach.github.com/articles/lesson-git-credential-cache/)
+* [GitHub Issues Cheatsheet](http://teach.github.com/articles/github-issues-cheatsheet/)
+* [Jenkins Git Plugin](https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin)
+* [Open Source Git Ignores](https://github.com/github/gitignore)
+* [Ship of Theseus - Related to Similarity Index](http://en.wikipedia.org/wiki/Ship_of_Theseus)
+* [git-p4 Perforce Script](http://answers.perforce.com/articles/KB_Article/Git-P4)
+* [Unix watch command](http://en.wikipedia.org/wiki/Watch_(Unix\))
+* [SHA-1 Hash Collisions](http://git-scm.com/book/ch6-1.html#A-SHORT-NOTE-ABOUT-SHA-1)
+* [NPD Git Cheatsheet](http://ndpsoftware.com/git-cheatsheet.html)
+* [More Git Cheatsheets](http://teach.github.com/articles/git-cheatsheets/)
+
+## Installation
+* Git Installation
+    * [The Git-SCM Web Site (All Platforms)](http://git-scm.com)
+    * [The GitHub for Windows Client and Command Line](http://windows.github.com)
+* Minimum is 1.7.ANYTHING, but can have issues with HTTPS credential prompting.
+* Best is 1.8.0 or higher
+
+## Suggested Books, Articles
+* [Free ProGit Book](http://git-scm.com/book)
+* [Getting started with Version Control](http://teach.github.com/articles/lesson-new-to-version-control/)
+* [The GitHub Flow](http://scottchacon.com/2011/08/31/github-flow.html)
+* [DVCS Workflows Book](https://github.com/zkessin/dvcs-workflows)
+* [Git Cheat Sheets](http://teach.github.com/articles/git-cheatsheets/)
+* [Git Workflow Links](https://pinboard.in/u:matthew.mccullough/t:git+workflow)
+
+## Course Materials, Links
+* [Git Teaching Materials](http://teach.github.com)
+* [Course Slides](http://teach.github.com/presentations/)
+* [Course Slides Source](https://github.com/github/teach.github.com/tree/gh-pages/presentations)
+* [Post-event Git and GitHub questions](https://github.com/githubtraining/feedback/)
+* [Free Office Hours Sessions](http://training.github.com/web/free-classes/)
+
+## Outline
+* Repo basics
+* Committing changes
+* Looking at history
+* Sharing on GitHub
+* Pull Requests
+
+
+## Command History
+    ls -la
+    git log
+    git log --format=raw
+    git log --graph
+    git log --graph --decorate
+    git log --graph --decorate --all
+    git config alias.lol
+    git config --global alias.lol "log --oneline --decorate --graph --all"
+    git loglive
+    vi README.md
+    git add README.md
+    git commit -m "Updated the README"
+    git remote add origin https://github.com/githubteacher/ghe-demo.git
+    git remote -v
+    vi ~/.gitconfig
+    git push -u origin master
+    git branch
+    git commit -m "Heart that mocked"
+    git status
+    git push
+    git checkout master
+    cat ozymandias.txt
+    git pull --prune
+    git branch -d feature
+    tr.git
+    cd scratch
+    export PS1="$ "
+    git clone https://github.com/githubstudent/ghe-demo.git
+    cd ghe-demo
+    ls
+    git add ozymandias.txt
+    git commit -m "King of Kings"
+    git branch feature
+    git reset --hard HEAD^
+    git checkout feature
+    git push -u origin feature
+    git pull
+    git lol
+    git add .
+    git commit -m "Oh snap"
+    vi ozymandias.txt
+
+
+
+