First Commit
diff --git a/functions/git.bash b/functions/git.bash
new file mode 100644
index 0000000..17e8a70
--- /dev/null
+++ b/functions/git.bash
@@ -0,0 +1,13 @@
+function git_remote {
+  echo "Running: git remote add origin ${GIT_HOSTING}:$1.git"
+  git remote add origin $GIT_HOSTING:$1.git
+}
+
+function git_first_push {
+  echo "Running: git push origin master:refs/heads/master"
+  git push origin master:refs/heads/master
+}
+
+function git_remove_missing_files() {
+  git ls-files -d -z | xargs -0 git update-index --remove
+}
\ No newline at end of file