Skip to content

deloschang/Ajemem-Prototype

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ajemem uploaded via github

Resources: http://help.github.com/create-a-repo/
Cheatsheet: http://help.github.com/git-cheat-sheets/

Steps to Push:

1) Identify yourself to git
  - git config --global user.name "Delos Chang"
  - git config --global user.email "[email protected]"

2) Start using git
  - git init

3) Scheduling the addition of an individual file to the next commit
  - git add [file name]
  OR (to add the entire directory)
  - git add .

4) Committing files with comments
 - git commit -m "First import"

The code above executes actions locally, meaning you still haven’t done anything on GitHub yet. To connect your local repository to your GitHub account, you will need to set a remote for your repo and push your commits to it:

5) Pushing commited files to repo
$ git remote add origin [email protected]:username/Ajemem-Prototype.git  // Sets the origin for the Ajemem-Prototype repo
$ git push origin master

About

PHP and AJAX experimentations using Smarty template engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published