Code Monkey home page Code Monkey logo

Comments (2)

bugs181 avatar bugs181 commented on August 31, 2024

Try these commands to push a git repo to the master branch. You can have multiple git remotes, say different servers for development, production, etc. I'll explain what these commands do later.

$ git init
$ git remote add development http://localhost:7000/repo-name.git
$ git add --all
$ git commit -m "Your commit message"
$ git push development master
  1. Initialize a new project directory with git.
  2. This command will add the localhost git server as a development remote. This will later allow you to push to a particular git server by using the tag.
  3. This command tells git to add all file changes to the next commit.
  4. This command adds a commit message so you know what the last change to your repo was.
  5. This command finally pushes the committed changes to the development server on the master branch.

I hope this helps you.

from nodejs-git-server.

Yamilquery avatar Yamilquery commented on August 31, 2024

I can't make push... :(

Yamil:test Yamilquery$ git remote add development http://user:password@domain:7000/test.git
Yamil:test Yamilquery$ git add --all
Yamil:test Yamilquery$ git commit -m "test"
On branch master
nothing to commit, working directory clean
Yamil:test Yamilquery$ git push development master
Counting objects: 3, done.
Writing objects: 100% (3/3), 220 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: : No such file or directory
To http://user:[email protected]:7000/test.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'http://user:[email protected]:7000/test.git'
Yamil:test Yamilquery$

from nodejs-git-server.

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.