Skip to content

Instantly share code, notes, and snippets.

View shyamkkhadka's full-sized avatar

Shyam Krishna Khadka shyamkkhadka

View GitHub Profile
@shyamkkhadka
shyamkkhadka / Autoencoder
Created November 23, 2016 14:08
Basic autoencoder with theano
test
== Assume you are working on branch called "mytestbranch" and now you want to commit
$ git add .
$ git commit -m "My commit message"
$ git checkout master
$ git merge mytestbranch
$ git pull --rebase
== if conflict,
== resolve conflict:
$ git add .
$ git rebase --continue
git checkout master
git merge branchname
git pull --rebase
(If conflict, resolve conflict:
git add .
git rebase --continue
)
git push
$ cd myproject
$ git checkout myBranch
$ git push -u origin myBranch
# In some cases -u showed as invalid argument, so use this
$ git push origin <local name>
$ git clone git://example.com/myproject
$ cd myproject
$ git branch -a
$ git checkout -b experimental origin/experimental