Skip to content
This repository was archived by the owner on Oct 19, 2021. It is now read-only.

alberto-blasco/WebEng2014

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

164 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web Engineering 2014-2015

This is the repository that we will use for uploading all the assignments for course 2014-2015.

Theory

Source code:

Lab

Set up git

This is a git repository. First, you’ll need to sign up for an account on GitHub.com. Install git for Windows, Mac or Linux as needed. Next, in your console type:

$ git config --global user.name "Your Name Here" $ git config --global user.email "your_email@youremail.com" $ git config --global push.default simple 

Next steps you must configure your preferred way to connecting GitHub: HTTPS (tutorial) or SSH (tutorial). Now you can create your own online repository on GitHub (tutorial)

Fork this repository

Forking this repository is very easy. First click on the right-top corner of the page Fork. That's it! Next you need to keep your fork synced. We assume here that you have set up git in your computer.

$ git clone https://github.com/YOUR-GITHUB-USERNAME/WebEng2014 $ cd WebEng2014 $ git remote add upstream https://github.com/UNIZAR-30246-WebEngineering/WebEng2014.git 

Keep synced this repository

Do the following steps to keep your repo synced.

$ cd WebEng2014 $ git fetch upstream $ git checkout master $ git merge upstream/master 

Upload your changes

First add your changes into your local repository:

$ cd WebEng2014 $ git add -A $ git commit -m "A CONSISE DESCRIPTION" 

And then push them to your online WebEng2014 repository in GitHub:

$ git push 

Finally, you must make a pull request. Go to your WebEng2014 repository in GitHub and click on the green icon on the left. Create a pull request so that we can check your changes and accept them in this repository. If everything is ok, your changes will be added. If not, you will receive a message explaining why not.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 93.2%
  • Groovy 6.8%