Git Product home page Git Product logo

Comments (5)

gugahoi avatar gugahoi commented on May 29, 2024

You can have a look at the branch "natecj-master" on this repository. I was playing around with @natecj's idea from way back. It is a very rough draft and based on a somewhat old version of Maraschino. I too would like a similar functionality but have other priorities at the moment and do not know when I'll be able to get around to this.

from maraschino.

mvanderberg avatar mvanderberg commented on May 29, 2024

Thanks for the help.
I'll look into it, but if anyone has a better idea....

from maraschino.

mvanderberg avatar mvanderberg commented on May 29, 2024

@gugahoi
Maybe this is a bit of a stupid question, but:

I changed the application redirect html so it shows the frame correctly, but I don't really know how to checkin my adjustments so you can check them out...

Can you help?

Thanks in advance,

best regards, Mark

from maraschino.

gugahoi avatar gugahoi commented on May 29, 2024

Since you already have a "fork" of maraschino, you can upload a new branch to it. Ideally you should pull your fork:

git pull https://github.com/mvanderberg/maraschino

This will download your maraschino repo to your computer. After that you should update it since your fork is quite old:

git remote add upstream https://github.com/mrkipling/maraschino
git pull upstream master

This will bring in the latest changes to your repo. However, since you seem have made a modification there might be conflicts. If that if the casem you will be told which file you should fix and commit your changes:

git commit -m 'your description goes here'

Following that you should create a branch for any modification you make.

git checkout -b branchname

This will create a branch called "branchname". Now you make all the modifications you want by editing your files on your favourite text editor and commit them.

git commit -m 'your description goes here'

NOTE: If you have new files, you will have to add them before you commit (this adds all new files -> git add *).
After that is done, just push your changes:

git push

or

git push branchname

And that should be it. This is a good website with some command line references -> http://gitref.org/

from maraschino.

mvanderberg avatar mvanderberg commented on May 29, 2024

@gugahoi Thanks for the help..
I'm going to try this...

best regards, Mark

from maraschino.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.