Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1050423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:46:07+00:00 2026-05-16T16:46:07+00:00

So, I’d like to make some changes to status.net (an open source Twitter clone).

  • 0

So, I’d like to make some changes to status.net (an open source Twitter clone).

Let’s say I want to make it so that people can add fonts in their ‘tweets’, hypothetically.

But, I want to keep getting updates from the status.net people…Let’s say they make some changes and fix some security holes or add a new auxiliary feature.

So, I’ll want to

git clone <url to status.net repo>

Then, what? 🙂

How do I make my changes, store them in git properly, and merge(?) properly with new changes coming from the ‘net?

A sequence of commands, interwoven with “(make your changes here)” would help me a lot.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:46:07+00:00Added an answer on May 16, 2026 at 4:46 pm

    To make changes, you first put on your programmer hat and do what you always do. I really can’t help you there 🙂

    Next, you’ll want to commit your changes. To commit, just say:

    $ git commit -a # -a means "automatically stage all changed files git knows about"
    

    and type a descriptive message at the prompt. Note that “commit” in git does not make your changes public. It merely commits to your local copy of the repository; nobody sees it until you git push in the future.

    To merge changes other people made into your copy of the repository:

    $ git pull
    

    If you have direct access to the repository, you can make the git commits you did earlier available to the public with:

    $ git push
    

    Otherwise, you can convert your commits into patches and send them to your friendly maintainer:

    $ git log
    commit 75b17eeca0394e27759acf2f6b039851a5a28f98
    Author: Your Name 
    Date:   Tue Aug 10 01:10:19 2010 -0400
    
        Did something wonderful.
    
    commit f9f677a465a5746874dc2f2c86cc444ffa28a020
    Author: Your Name 
    Date:   Fri Aug 6 04:06:01 2010 -0400
    
        Fixed a horrible horrible error of mine.
    
    $ git show 75b17eeca0394e27759acf2f6b039851a5a28f98 > wonderful.diff
    $ git show f9f677a465a5746874dc2f2c86cc444ffa28a020 > fix.diff
    

    Lastly, if you want to add new files to the repository, say:

    git add foo.html # don't forget to git commit -a like you would any change
    

    To remove files, you can simply remove them like you normally would (with the rm shell command), then git commit -a the change.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I've got a string that has curly quotes in it. I'd like to replace
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I know there's a lot of other questions out there that deal with this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.