Skip to content

TEST YOUR CODE BEFORE YOU SUBMIT THE PULL REQUEST.

Notifications You must be signed in to change notification settings

DFXLuna/mazeGame

Repository files navigation

How to use Git/Github

  1. Install Git Windows, Linux/Mac.
  2. Find Eclipse's workspace folder. You specified this.
  3. Fork the original repo using Githubs web interface
  4. Set up syncing between your fork and the original repo. Check syncing.
  5. Clone the repo into your workspace folder. Follow this guide Cloning a repo.
  6. Import project into Eclipse using Import>General>Existing Project
  7. Make changes.
  8. Send changes to server. (This only changes your fork).
  9. Make pull request. Pull request guide

Syncing

To check your current upstream branch.

git remote -v

To sync to the original repo.

git remote add upstream <link to *this* repo>

Verify upstream branch.

git remote -v

Send changes to server

Add files to staging area.

git add *

Commit to local repo.

git commit -m "Clear indiciator of exactly what you are commiting"

Push to remote server.

git push origin master

Links

Front End Dev

Working with Frames

How to use GridBagLayout

GridBagLayout Example

###UML Gliffy

About

TEST YOUR CODE BEFORE YOU SUBMIT THE PULL REQUEST.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages