
Let’s have a glance on divergent thoughts of users and production team.Īliza Rozen, Project Manager at Twitter, in a blog, said, “ Trying to cram your thoughts into a Tweet – we’ve all been there, and it’s a pain.” It also proclaimed, tweet’s refashioning will be experimented in all languages excluding Japanese, Chinese and Korean as these three languages have characters which could express more than other languages. Their notions behind the decision is, extending tweet’s character limit would provide more elbow space to users for depicting their emotions and views. Nevertheless, the production and management team of Twitter has their own logic to support the decision. According to tweeps, one of the reasons why the medium gained immense popularity among them is, they find it an extremely concised platform to share their emotions and experiences without adding unnecessary distortions in the tweet. Twitter being used as a medium for social networking by 328 million monthly active users, is receiving mixed reactions over its decision. The announcement, however, doesn’t seem to get overwhelming responses from many of the users, worldwide.

The most famous micro-blogging site Twitter, has announced on September 27 that it has started a tryout period of doubling its tweet’s characters from 140 to 280.
#TWITTER FOR MAC 280 CHARACTERS TRIAL#
It is perfectly safe to see a lot of messages here that read "warning: CRLF will be replaced by LF in file.Twitter’s trial of rolling out 280 characters tweet: A Boon Or Bane for Twitter Marketing?

This is your chance to inspect which files, if any, were unchanged. Others may need to complete the following additional steps:Īdd all your changed files back, and prepare them for a commit. In some cases, this is all that needs to be done. Rewrite the Git index to pick up all the new line endings. Remove the index and force Git to rescan the working directory. Git commit -m "Saving files before refreshing line endings" Save your current files in Git, so that none of your work is lost. git directory), and then restore the files all at once. Tldr:īackup your files with Git, delete every file in your repository (except the.
#TWITTER FOR MAC 280 CHARACTERS HOW TO#
More on how to refresh your repo after changing line endings settings here. # Convert to LF line endings on checkout. # Convert to CRLF line endings on checkout. gitattributes file: # Set the default behavior for all files. text=auto - Sensible default that leaves line handle up to Git's discretion.text eol=lf - Converts line endings to LF on checkout.text eol=crlf - Converts line endings to CRLF on checkout.text - Changes line endings to OS native line endings.The text value can be configured further to instruct Git on how to handle line endings for matching files: binary (files that Git should not modify line endings for - as this can cause some image types such as PNGs not to render in a browser).gitattributes file and define line ending settings for your project files, one line at a time in the following format: path_regex line-ending-settings where line-ending-settings is one of the following:

There are global and per-repo approaches to managing cross-os line endings.Ĭonfigure Git line endings handling on Linux or OS X: git config -global tocrlf inputĬonfigure Git line endings handling on Windows: git config -global tocrlf true
This Github help article details available approaches for handling lines endings cross-OS. This answer seems relevant since the OP makes reference to a need for a multi-OS solution.
